home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-058.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12464);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2003-0973", "CVE-2004-0096");
  13.  
  14.  name["english"] = "RHSA-2004-058: mod_python";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated mod_python packages that fix a denial of service vulnerability are
  21.   now available for Red Hat Enterprise Linux.
  22.  
  23.   mod_python embeds the Python language interpreter within the Apache httpd
  24.   server.
  25.  
  26.   A bug has been found in mod_python versions 2.7.10 and earlier that can
  27.   lead to a denial of service vulnerability. The Common Vulnerabilities and
  28.   Exposures project (cve.mitre.org) has assigned the name CAN-2003-0973 to
  29.   this issue.
  30.  
  31.   Although Red Hat Enterprise Linux shipped with a version of mod_python that
  32.   contains this bug, our testing was unable to trigger the denial of service
  33.   vulnerability. However, mod_python users are advised to upgrade to these
  34.   errata packages, which contain a backported patch that corrects this bug.
  35.  
  36.  
  37.  
  38.  
  39. Solution : http://rhn.redhat.com/errata/RHSA-2004-058.html
  40. Risk factor : High';
  41.  
  42.  script_description(english:desc["english"]);
  43.  
  44.  summary["english"] = "Check for the version of the mod_python packages";
  45.  script_summary(english:summary["english"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  50.  family["english"] = "Red Hat Local Security Checks";
  51.  script_family(english:family["english"]);
  52.  
  53.  script_dependencies("ssh_get_info.nasl");
  54.  
  55.  script_require_keys("Host/RedHat/rpm-list");
  56.  exit(0);
  57. }
  58.  
  59. include("rpm.inc");
  60. if ( rpm_check( reference:"mod_python-2.7.8-2", release:"RHEL2.1") )
  61. {
  62.  security_hole(0);
  63.  exit(0);
  64. }
  65. if ( rpm_check( reference:"mod_python-3.0.3-3.ent", release:"RHEL3") )
  66. {
  67.  security_hole(0);
  68.  exit(0);
  69. }
  70.  
  71. if ( rpm_exists(rpm:"mod_python-", release:"RHEL2.1") )
  72. {
  73.  set_kb_item(name:"CAN-2003-0973", value:TRUE);
  74.  set_kb_item(name:"CVE-2004-0096", value:TRUE);
  75. }
  76. if ( rpm_exists(rpm:"mod_python-", release:"RHEL3") )
  77. {
  78.  set_kb_item(name:"CAN-2003-0973", value:TRUE);
  79.  set_kb_item(name:"CVE-2004-0096", value:TRUE);
  80. }
  81.  
  82. set_kb_item(name:"RHSA-2004-058", value:TRUE);
  83.